File manager - Edit - /home/autoph/public_html/projects/tickets-autohub/vendor/beyondcode/laravel-websockets/src/Apps/ConfigAppProvider.php
Back
<?php namespace BeyondCode\LaravelWebSockets\Apps; use Illuminate\Support\Collection; class ConfigAppProvider implements AppProvider { /** @var Collection */ protected $apps; public function __construct() { $this->apps = collect(config('websockets.apps')); } /** @return array[\BeyondCode\LaravelWebSockets\AppProviders\App] */ public function all(): array { return $this->apps ->map(function (array $appAttributes) { return $this->instanciate($appAttributes); }) ->toArray(); } public function findById($appId): ?App { $appAttributes = $this ->apps ->firstWhere('id', $appId); return $this->instanciate($appAttributes); } public function findByKey(string $appKey): ?App { $appAttributes = $this ->apps ->firstWhere('key', $appKey); return $this->instanciate($appAttributes); } public function findBySecret(string $appSecret): ?App { $appAttributes = $this ->apps ->firstWhere('secret', $appSecret); return $this->instanciate($appAttributes); } protected function instanciate(?array $appAttributes): ?App { if (! $appAttributes) { return null; } $app = new App( $appAttributes['id'], $appAttributes['key'], $appAttributes['secret'] ); if (isset($appAttributes['name'])) { $app->setName($appAttributes['name']); } if (isset($appAttributes['host'])) { $app->setHost($appAttributes['host']); } if (isset($appAttributes['path'])) { $app->setPath($appAttributes['path']); } $app ->enableClientMessages($appAttributes['enable_client_messages']) ->enableStatistics($appAttributes['enable_statistics']) ->setCapacity($appAttributes['capacity'] ?? null); return $app; } }
| ver. 1.4 |
.
| PHP 8.1.32 | Generation time: 0 |
proxy
|
phpinfo
|
Settings